home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Tool Chest / Dev.CD Feb 97 TC.toast / Sample Code / Interapplication Communication / MenuScripter 4.0 / Sources / MSAECopy.h < prev    next >
Encoding:
Text File  |  1996-07-09  |  518 b   |  27 lines  |  [TEXT/CWIE]

  1. // MSAECopy.h
  2. //
  3. // Original version by Jon Lansdell and Nigel Humphreys.
  4. // 4.0 and 3.1 updates by Greg Sutton.
  5.  
  6. // ©Apple Computer Inc 1996, all rights reserved.
  7.  
  8. #ifndef __MSAECOPY__
  9. #define __MSAECOPY__
  10.  
  11. #include <AppleEvents.h>
  12. #include <AEObjects.h>
  13. #include <AERegistry.h>
  14.  
  15. #include "MSToken.h"
  16.  
  17. pascal OSErr    DoCopy(const AppleEvent *theAppleEvent, AppleEvent *reply, long refcon);
  18.  
  19. OSErr            CopyTextToken(TextToken* theToken);
  20. OSErr            CopyTextDesc(AEDesc* textDesc);
  21. OSErr            CopyDesc(AEDesc* aDesc);
  22.  
  23. #endif
  24.  
  25.  
  26.  
  27.